home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19950929-19951130 / 000189_news@columbia.edu_Tue Oct 24 14:10:09 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28242
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 24 Oct 1995 10:10:13 -0400
  3. Received: by apakabar.cc.columbia.edu id AA11734
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 24 Oct 1995 10:10:11 -0400
  5. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  6. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: Can Kermit display be turned off?
  9. Date: 24 Oct 1995 14:10:09 GMT
  10. Organization: Columbia University
  11. Lines: 30
  12. Message-Id: <46is41$bek@apakabar.cc.columbia.edu>
  13. References: <46hbdc$ej5@news1.halcyon.com>
  14. Nntp-Posting-Host: watsun.cc.columbia.edu
  15. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16.  
  17. In article <46hbdc$ej5@news1.halcyon.com>,
  18. Kathleen M. House <kmhouse@chinook.halcyon.com> wrote:
  19. : I've written a script (heavily plagurized from the MS-DOS 
  20. : for Kermit manual) ...
  21. :
  22. That's what it's for :-)
  23.  
  24. :  ... to log into a remote Unix box and transfer
  25. : a file. The problem is that I would like to keep the Unix and
  26. : Kermit commands from displaying while this is going on.  
  27. : I've tried set local-echo off and set display quiet, but neither
  28. : of these do what I need.  
  29. "set local-echo off" is not relevant, but "set display quiet" does
  30. indeed disable the file transfer display.
  31.  
  32. : Does anyone know of a command to turn off the display of machine 
  33. : generated commands?
  34. :
  35. What, exactly, are you seeing that you don't want to see?
  36.  
  37. In any case, one way of doing this is to run Kermit from within another
  38. program (in the simplest case, a batch program) that redirects its
  39. standard output away from the screen.  For example:
  40.  
  41.   kermit -f command-file > nul
  42.  
  43. You can also make that same program put whatever you want on the screen.
  44.  
  45. - Frank